8d6a29bdf28b3aa2145bc6004c55e3deb8b1aceb,src/main/java/net/sharkfw/knowledgeBase/sync/SyncKB.java,SyncKB,addInformation,#number[]#ASIPSpace#,565

Before Change


    @Override
    public ASIPInformation addInformation(byte[] content, ASIPSpace semanticAnnotations) throws SharkKBException {
        this.changed();
        return this.targetKB.addInformation(content, semanticAnnotations);
    }

    @Override

After Change



    @Override
    public ASIPInformation addInformation(byte[] content, ASIPSpace semanticAnnotations) throws SharkKBException {
        ASIPInformation asipInformation = this.targetKB.addInformation(content, semanticAnnotations);
        this.changed();
        return asipInformation;
    }

    @Override